/* =========================================================
   HIGHLAND DENTAL CENTER
   HOMEPAGE MIDDLE SECTIONS
========================================================= */

/*
  Make sure Poppins is loaded in the page head:

  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap" rel="stylesheet">
*/


/* =========================================================
   DESIGN VARIABLES
========================================================= */

.hdc-home-middle {
  --hdc-teal: #647f82;
  --hdc-teal-dark: #3f5f63;
  --hdc-teal-deep: #29484d;
  --hdc-gold: #f4cf7a;
  --hdc-gold-dark: #d5aa4e;
  --hdc-wheat: #f5deb3;
  --hdc-cream: #faf8f3;
  --hdc-cream-dark: #f1ede4;
  --hdc-white: #ffffff;
  --hdc-heading: #263c40;
  --hdc-text: #536467;
  --hdc-border: rgba(63, 95, 99, 0.14);
  --hdc-shadow:
    0 24px 60px rgba(38, 60, 64, 0.10);
  --hdc-shadow-hover:
    0 30px 70px rgba(38, 60, 64, 0.16);

  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: "Poppins", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--hdc-text);
  background: var(--hdc-white);
}

.hdc-home-middle *,
.hdc-home-middle *::before,
.hdc-home-middle *::after {
  box-sizing: border-box;
}


/* =========================================================
   SHARED CONTAINER
========================================================= */

.hdc-home-container {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}


/* =========================================================
   SHARED TYPOGRAPHY
========================================================= */

.hdc-section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.hdc-section-heading-centered {
  margin-inline: auto;
  text-align: center;
}

.hdc-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 17px;
  color: var(--hdc-teal-dark);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hdc-section-eyebrow::before {
  width: 30px;
  height: 1px;
  content: "";
  background: var(--hdc-gold-dark);
}

.hdc-section-heading-centered .hdc-section-eyebrow::after {
  width: 30px;
  height: 1px;
  content: "";
  background: var(--hdc-gold-dark);
}

.hdc-section-eyebrow-light {
  color: var(--hdc-wheat);
}

.hdc-section-eyebrow-light::before {
  background: var(--hdc-gold);
}

.hdc-home-middle h2,
.hdc-home-middle h3,
.hdc-home-middle p {
  margin-top: 0;
}

.hdc-home-middle h2 {
  margin-bottom: 20px;
  color: var(--hdc-heading);
  font-size: clamp(2.15rem, 4.1vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hdc-section-heading > p {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: var(--hdc-text);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.8;
}


/* =========================================================
   SHARED BUTTONS
========================================================= */

.hdc-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hdc-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms ease;
}

.hdc-button:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.hdc-button:hover svg {
  transform: translateX(4px);
}

.hdc-button:focus-visible,
.hdc-text-link:focus-visible,
.hdc-service-item:focus-visible {
  outline: 3px solid rgba(244, 207, 122, 0.75);
  outline-offset: 4px;
}

.hdc-button-gold {
  color: var(--hdc-teal-deep);
  background: var(--hdc-gold);
  box-shadow: 0 12px 28px rgba(244, 207, 122, 0.18);
}

.hdc-button-gold:hover {
  color: var(--hdc-teal-deep);
  background: #f8d98d;
  box-shadow: 0 16px 34px rgba(244, 207, 122, 0.25);
}

.hdc-button-teal {
  color: var(--hdc-wheat);
  background: var(--hdc-teal-dark);
  border: 1px solid rgba(244, 207, 122, 0.18);
  box-shadow: 0 12px 28px rgba(63, 95, 99, 0.18);
}

.hdc-button-teal svg {
  stroke: var(--hdc-wheat);
}

.hdc-button-teal:hover {
  color: var(--hdc-gold);
  background: var(--hdc-teal-deep);
  border-color: rgba(244, 207, 122, 0.35);
  box-shadow: 0 16px 34px rgba(63, 95, 99, 0.25);
}

.hdc-button-teal:hover svg {
  stroke: var(--hdc-gold);
}

.hdc-text-link {
  position: relative;
  display: inline-block;
  padding-block: 6px;
  color: var(--hdc-teal-dark);
  font-size: 0.91rem;
  font-weight: 500;
  text-decoration: none;
}

.hdc-text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 220ms ease;
}

.hdc-text-link:hover {
  color: var(--hdc-teal-deep);
  text-decoration: none;
}

.hdc-text-link:hover::after {
  transform: scaleX(1);
}

.hdc-text-link-light {
  color: rgba(255, 255, 255, 0.9);
}

.hdc-text-link-light:hover {
  color: var(--hdc-white);
}


/* =========================================================
   SECTION 1
   WHY CHOOSE HIGHLAND
========================================================= */

.hdc-why {
  position: relative;
  padding: 112px 0 124px;
  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(244, 207, 122, 0.17),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      var(--hdc-white) 0%,
      var(--hdc-cream) 100%
    );
}

.hdc-why::after {
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(100, 127, 130, 0.13);
  border-radius: 50%;
  content: "";
}

.hdc-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hdc-benefit-card {
  position: relative;
  min-height: 335px;
  overflow: hidden;
  padding: 33px 29px 31px;
  border: 1px solid rgba(63, 95, 99, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(38, 60, 64, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.hdc-benefit-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-radius: 0 0 0 100%;
  content: "";
  background: rgba(244, 207, 122, 0.16);
  transition: transform 300ms ease;
}

.hdc-benefit-card:hover {
  border-color: rgba(63, 95, 99, 0.2);
  box-shadow: var(--hdc-shadow);
  transform: translateY(-7px);
}

.hdc-benefit-card:hover::before {
  transform: scale(1.18);
}

.hdc-benefit-icon {
  display: flex;
  width: 55px;
  height: 55px;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
  border-radius: 17px;
  color: var(--hdc-teal-dark);
  background: rgba(100, 127, 130, 0.11);
}

.hdc-benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hdc-benefit-number {
  position: absolute;
  top: 27px;
  right: 27px;
  color: rgba(63, 95, 99, 0.42);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hdc-benefit-card h3 {
  margin-bottom: 14px;
  color: var(--hdc-heading);
  font-size: 1.19rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.hdc-benefit-card p {
  margin-bottom: 0;
  color: var(--hdc-text);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.72;
}


/* =========================================================
   SECTION 2
   SIGNATURE SERVICES
========================================================= */

.hdc-signature-services {
  position: relative;
  padding: 124px 0;
  color: rgba(255, 255, 255, 0.8);
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(244, 207, 122, 0.13),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      var(--hdc-teal-deep) 0%,
      var(--hdc-teal) 100%
    );
}

.hdc-signature-services::before {
  position: absolute;
  top: 0;
  left: 7%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.07);
}

.hdc-services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 115px);
}

.hdc-services-intro {
  max-width: 535px;
}

.hdc-services-intro h2 {
  margin-bottom: 24px;
  color: var(--hdc-white);
}

.hdc-services-intro > p {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.82;
}

.hdc-services-actions,
.hdc-doctors-actions {
  display: flex;
  align-items: center;
  gap: 23px;
  flex-wrap: wrap;
}

.hdc-services-panel {
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 70px rgba(27, 50, 54, 0.24);
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
}

.hdc-service-item {
  display: grid;
  grid-template-columns: 57px minmax(0, 1fr) auto;
  align-items: center;
  gap: 19px;
  min-height: 104px;
  padding: 17px 23px;
  border-radius: 19px;
  color: var(--hdc-white);
  text-decoration: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.hdc-service-item + .hdc-service-item {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hdc-service-item:hover {
  color: var(--hdc-white);
  background: rgba(255, 255, 255, 0.11);
  text-decoration: none;
  transform: translateX(3px);
}

.hdc-service-icon {
  display: flex;
  width: 53px;
  height: 53px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 207, 122, 0.33);
  border-radius: 16px;
  color: var(--hdc-gold);
  background: rgba(244, 207, 122, 0.09);
}

.hdc-service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hdc-service-copy {
  min-width: 0;
}

.hdc-service-copy strong,
.hdc-service-copy small {
  display: block;
}

.hdc-service-copy strong {
  margin-bottom: 6px;
  color: var(--hdc-white);
  font-size: 1.03rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hdc-service-copy small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.55;
}

.hdc-service-arrow {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  color: var(--hdc-gold);
  font-size: 1.15rem;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.hdc-service-item:hover .hdc-service-arrow {
  color: var(--hdc-teal-deep);
  background: var(--hdc-gold);
  transform: translateX(3px);
}


/* =========================================================
   SECTION 3
   MEET THE DOCTORS
========================================================= */

.hdc-doctors-preview {
  position: relative;
  padding: 130px 0 136px;
  background:
    radial-gradient(
      circle at 85% 82%,
      rgba(100, 127, 130, 0.11),
      transparent 32%
    ),
    var(--hdc-white);
}

.hdc-doctors-layout {
  display: grid;
  grid-template-columns: minmax(390px, 0.96fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 125px);
}

.hdc-doctors-visual {
  position: relative;
  padding-bottom: 34px;
}

.hdc-doctors-image-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 570px;
  border-radius: 32px 32px 90px 32px;
  background: var(--hdc-cream-dark);
  box-shadow: var(--hdc-shadow);
}

.hdc-doctors-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  object-position: center top;
}

.hdc-doctors-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 58%,
      rgba(34, 61, 65, 0.12) 100%
    );
}

.hdc-doctors-image-accent {
  position: absolute;
  z-index: -1;
  top: -26px;
  left: -28px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(213, 170, 78, 0.6);
  border-radius: 50%;
}

.hdc-doctors-image-accent::after {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  content: "";
  background: rgba(244, 207, 122, 0.2);
}

.hdc-doctors-trust-card {
  position: absolute;
  z-index: 4;
  right: -30px;
  bottom: 0;
  display: flex;
  width: min(325px, 82%);
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  border: 1px solid rgba(63, 95, 99, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 20px 45px rgba(38, 60, 64, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hdc-trust-card-icon {
  display: flex;
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--hdc-teal-dark);
  background: rgba(244, 207, 122, 0.28);
}

.hdc-trust-card-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hdc-doctors-trust-card strong,
.hdc-doctors-trust-card small {
  display: block;
}

.hdc-doctors-trust-card strong {
  margin-bottom: 3px;
  color: var(--hdc-heading);
  font-size: 0.91rem;
  font-weight: 500;
}

.hdc-doctors-trust-card small {
  color: var(--hdc-text);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.45;
}

.hdc-doctors-content h2 {
  margin-bottom: 24px;
}

.hdc-doctors-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--hdc-text);
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.82;
}

.hdc-doctor-name-list {
  display: grid;
  gap: 3px;
  margin-bottom: 37px;
}

.hdc-doctor-name {
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--hdc-border);
}

.hdc-doctor-initials {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--hdc-teal-dark);
  background: var(--hdc-cream-dark);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hdc-doctor-name strong,
.hdc-doctor-name small {
  display: block;
}

.hdc-doctor-name strong {
  margin-bottom: 3px;
  color: var(--hdc-heading);
  font-size: 0.94rem;
  font-weight: 500;
}

.hdc-doctor-name small {
  color: var(--hdc-text);
  font-size: 0.77rem;
  font-weight: 300;
  line-height: 1.45;
}


/* =========================================================
   XL / LARGE DESKTOP
   1200px AND ABOVE
========================================================= */

@media (min-width: 1200px) {

  .hdc-home-container {
    width: min(100% - 64px, 1240px);
  }

}


/* =========================================================
   LG / SMALL DESKTOP
   BELOW 1200px
========================================================= */

@media (max-width: 1199.98px) {

  .hdc-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hdc-benefit-card {
    min-height: 290px;
  }

  .hdc-services-layout {
    grid-template-columns: minmax(0, 0.83fr) minmax(400px, 1fr);
    gap: 60px;
  }

  .hdc-doctors-layout {
    gap: 70px;
  }

  .hdc-doctors-trust-card {
    right: -15px;
  }

}


/* =========================================================
   MD / TABLET
   BELOW 992px
========================================================= */

@media (max-width: 991.98px) {

  .hdc-why,
  .hdc-signature-services,
  .hdc-doctors-preview {
    padding-top: 94px;
    padding-bottom: 100px;
  }

  .hdc-services-layout,
  .hdc-doctors-layout {
    grid-template-columns: 1fr;
  }

  .hdc-services-layout {
    gap: 47px;
  }

  .hdc-services-intro {
    max-width: 680px;
  }

  .hdc-services-panel {
    width: 100%;
  }

  .hdc-doctors-layout {
    gap: 75px;
  }

  .hdc-doctors-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .hdc-doctors-image-wrap {
    min-height: 620px;
  }

  .hdc-doctors-image-wrap img {
    min-height: 620px;
  }

  .hdc-doctors-content {
    max-width: 720px;
  }

}


/* =========================================================
   SM / LARGE MOBILE
   BELOW 768px
========================================================= */

@media (max-width: 767.98px) {

  .hdc-home-container {
    width: min(100% - 34px, 680px);
  }

  .hdc-why,
  .hdc-signature-services,
  .hdc-doctors-preview {
    padding-top: 78px;
    padding-bottom: 84px;
  }

  .hdc-section-heading {
    margin-bottom: 39px;
  }

  .hdc-home-middle h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.1;
  }

  .hdc-home-middle h2 br {
    display: none;
  }

  .hdc-section-heading > p,
  .hdc-services-intro > p,
  .hdc-doctors-lead {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hdc-benefit-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hdc-benefit-card {
    min-height: 0;
    padding: 27px 25px;
  }

  .hdc-benefit-icon {
    margin-bottom: 28px;
  }

  .hdc-services-panel {
    padding: 8px;
    border-radius: 23px;
  }

  .hdc-service-item {
    min-height: 95px;
    padding: 15px 16px;
  }

  .hdc-doctors-image-wrap {
    min-height: 510px;
    border-radius: 26px 26px 65px 26px;
  }

  .hdc-doctors-image-wrap img {
    min-height: 510px;
  }

  .hdc-doctors-trust-card {
    right: 13px;
    bottom: 0;
  }

}


/* =========================================================
   XS / MOBILE
   BELOW 576px
========================================================= */

@media (max-width: 575.98px) {

  .hdc-home-container {
    width: calc(100% - 28px);
  }

  .hdc-why,
  .hdc-signature-services,
  .hdc-doctors-preview {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .hdc-section-eyebrow {
    font-size: 0.69rem;
    letter-spacing: 0.13em;
  }

  .hdc-section-eyebrow::before,
  .hdc-section-heading-centered .hdc-section-eyebrow::after {
    width: 21px;
  }

  .hdc-home-middle h2 {
    margin-bottom: 17px;
    font-size: clamp(1.85rem, 9.6vw, 2.35rem);
    letter-spacing: -0.04em;
  }

  .hdc-section-heading > p,
  .hdc-services-intro > p,
  .hdc-doctors-lead {
    font-size: 1rem;
  }

  .hdc-benefit-card {
    border-radius: 20px;
  }

  .hdc-benefit-card h3 {
    font-size: 1.1rem;
  }

  .hdc-benefit-card p {
    font-size: 0.91rem;
  }

  .hdc-services-actions,
  .hdc-doctors-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
  }

  .hdc-button {
    width: 100%;
  }

  .hdc-text-link {
    align-self: center;
  }

  .hdc-service-item {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    gap: 13px;
    min-height: 91px;
    padding: 14px 11px;
  }

  .hdc-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hdc-service-icon svg {
    width: 22px;
    height: 22px;
  }

  .hdc-service-copy strong {
    font-size: 0.92rem;
  }

  .hdc-service-copy small {
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .hdc-service-arrow {
    width: 31px;
    height: 31px;
    font-size: 0.95rem;
  }

  .hdc-doctors-layout {
    gap: 58px;
  }

  .hdc-doctors-visual {
    padding-bottom: 43px;
  }

  .hdc-doctors-image-wrap {
    min-height: 420px;
    border-radius: 23px 23px 55px 23px;
  }

  .hdc-doctors-image-wrap img {
    min-height: 420px;
    object-position: center top;
  }

  .hdc-doctors-image-accent {
    top: -17px;
    left: -11px;
    width: 105px;
    height: 105px;
  }

  .hdc-doctors-image-accent::after {
    top: 17px;
    left: 17px;
    width: 70px;
    height: 70px;
  }

  .hdc-doctors-trust-card {
    right: 9px;
    bottom: 0;
    width: calc(100% - 18px);
    padding: 15px 16px;
  }

  .hdc-doctors-trust-card small {
    font-size: 0.68rem;
  }

  .hdc-doctor-name {
    grid-template-columns: 43px minmax(0, 1fr);
    gap: 12px;
  }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

  .hdc-service-copy small {
    display: none;
  }

  .hdc-service-item {
    min-height: 75px;
  }

  .hdc-doctors-image-wrap,
  .hdc-doctors-image-wrap img {
    min-height: 365px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .hdc-home-middle *,
  .hdc-home-middle *::before,
  .hdc-home-middle *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
/* =========================================================
   FORCE MEET THE DOCTORS BUTTON COLORS
   Keep this at the very bottom of the stylesheet
========================================================= */

.hdc-home-middle .hdc-doctors-actions a.hdc-button.hdc-button-teal,
.hdc-home-middle .hdc-doctors-actions a.hdc-button.hdc-button-teal:link,
.hdc-home-middle .hdc-doctors-actions a.hdc-button.hdc-button-teal:visited {
  color: #f5deb3 !important;
}

.hdc-home-middle .hdc-doctors-actions
a.hdc-button.hdc-button-teal span {
  color: #f5deb3 !important;
}

.hdc-home-middle .hdc-doctors-actions
a.hdc-button.hdc-button-teal svg,
.hdc-home-middle .hdc-doctors-actions
a.hdc-button.hdc-button-teal svg path {
  stroke: #f5deb3 !important;
}


/* Hover */

.hdc-home-middle .hdc-doctors-actions
a.hdc-button.hdc-button-teal:hover,
.hdc-home-middle .hdc-doctors-actions
a.hdc-button.hdc-button-teal:hover span {
  color: #f4cf7a !important;
}

.hdc-home-middle .hdc-doctors-actions
a.hdc-button.hdc-button-teal:hover svg,
.hdc-home-middle .hdc-doctors-actions
a.hdc-button.hdc-button-teal:hover svg path {
  stroke: #f4cf7a !important;
}
